home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / net_st.arc / NET.RC~ < prev    next >
Text File  |  1989-05-10  |  8KB  |  212 lines

  1. #  A U T O E X E C . N E T
  2. #
  3. #  The configuration file for the NET.EXE program...  this file
  4. #  *MUST* be in the root directory ( \ ) of your current disk when
  5. #  NET.EXE is run!
  6. #
  7. #  Note: NET.EXE ignores all lines beginning with a pound sign (#).
  8. #
  9. #  **********************************************************
  10. #  **** Read USEGUIDE.DOC to help understand this file! *****
  11. #  **********************************************************
  12. #
  13. #    There are many commands which must be provided to NET.EXE 
  14. #    each time it is started to configure the program.  To keep
  15. #    from having to type them by hand each time, we put them in
  16. #    this file, which is read each time NET starts up.  Commands
  17. #    in this configuration file are entered exactly as they would
  18. #    be typed at the keyboard in the program.
  19. #
  20. #    We've tried to give you intelligent default values for each of
  21. #    the commands below.  You need to read completely through this
  22. #    file, changing things as you go.  If you're not sure what to
  23. #    do with a command, try leaving it like it is!  Once you become
  24. #    familiar with the package, you'll no doubt find things to change.
  25. #    Once you're up and running and are all set, you can delete some or
  26. #    all of the comment lines (the ones that start with '#') to save
  27. #    disk space and make the program load faster, if you wish.
  28. #
  29. #-----------------------------------------------
  30. # This entry tells NET.EXE the name of your machine. The suffix 
  31. # 'ampr' is not officially confirmed *yet*, but for now we'll use
  32. # it to identify this station as an "AMateur Packet Radio" station.
  33. # Your hostname will show up in mail headers, etc.
  34. #
  35. hostname n0qrm.ampr 
  36. #
  37. #-----------------------------------------------
  38. #
  39. # The next line does the same thing that "MYCALL" did in your AX.25 
  40. # TNC... it identifies the callsign you're using on the air in AX.25
  41. # packets.
  42. #
  43. ax25 mycall n0qrm-0
  44. #
  45. #-----------------------------------------------
  46. #
  47. # This one contains your IP address.  If you have not as yet 
  48. # obtained an IP address you may temporarily use the one shown
  49. # but insert a random number (between 1 and 255) in lieu of
  50. # the '*'.  Try to insure that no one else in your area is using
  51. # the same number as you are!  Brackets are required.
  52. #
  53. ip address [44.128.x.x]
  54. #
  55. #------------------------------------------------
  56. #
  57. # The attach command tells NET.EXE about the interfaces in your computer
  58. # that you will be using for TCP/IP.  These can include normal IBM-type
  59. # serial "comm ports", Ethernet controllers, or dedicated packet cards.
  60. # The syntax is:
  61. # attach <hw type> <I/O address> <vector> <mode> <label> <bufsize> 
  62. #        <mtu> [<speed>]
  63. #
  64. # See USEGUIDE.DOC for explanation of the attach command and its options.
  65. #
  66. # This entry sets you up on COM1 as a 4800 baud KISS connection 
  67. # for use with KISS TNC's.  This is a reasonable place to start...
  68. #
  69. # slip 
  70. # attach asy AUX: 1 slip sl0 8092 576 9600 
  71. #
  72. # ax25 KISS TNC
  73. attach asy AUX: 1 ax25 ax0 2048 256 4800
  74. #
  75. # ...and here are some other possible attach commands you may find useful
  76. # as given, or just as examples of what you can do... see USEGUIDE.DOC for
  77. # more examples.
  78. #
  79. # COM2: set up as a 1200 baud KISS connection
  80. #
  81. #attach asy 0x2f8 3 ax25 ax1 2048 256 1200
  82. #
  83. # COM1: set up as a 9600 baud slip link to another computer
  84. #
  85. #attach asy 0x3f8 4 slip sl0 8092 576 9600
  86. #
  87. #-------------------------------------------------
  88. #
  89. # The KISS computer-to-tnc protocol includes a "command packet" that
  90. # you can use to twiddle TNC parameters like TXDELAY, TXTAIL, PERSIST,
  91. # and SLOTTIME.  Since most KISS implementations include good default
  92. # values, you shouldn't have to use this feature, but if things don't
  93. # work, you can use the "param" command to try tweaking the TNC.  If
  94. # you think you need to do this, read the KISS protocol documentation,
  95. # and/or talk to a friend who's an expert, *before* you go dorking with
  96. # your TNC settings!  All TNC's were not created equal, so you *MUST* read
  97. # the docs for the KISS implementation for your TNC as well.
  98. #
  99. # WHEW!  Good thing you probably don't have to do this, right?
  100. #
  101. # As an example, N3EUA's TNC-1 with a gross old crystal
  102. # rig likes longer TXDELAY and TXTAIL values than the defaults:
  103. #
  104. #          param ax0 1 20
  105. #          param ax0 4 10
  106. #
  107. # The format is:  param <label> <hex value> <hex value> <hex value> ...
  108. #
  109. #-------------------------------------------------
  110. #
  111. # The following entry tells the program to route all packets out 
  112. # the interface labeled ax0 in the attach command.  Notice that if you
  113. # are using the attach line from above for COM2, the label is 'ax1'
  114. # instead.  
  115. #
  116. route add default ax0
  117. #
  118. #-------------------------------------------------
  119. #
  120. # Time To Live is the maximum number of hops a packet can take 
  121. # before it is thrown away. This command prevents an inadvertent 
  122. # infinite loop from occuring with packets in the network.
  123. #
  124. ip ttl 16
  125. #
  126. #-------------------------------------------------
  127. #
  128. # The Maximum Segment Size is the largest single transmission that 
  129. # you will send. An mss of 216 corresponds to the mtu of 256 set
  130. # up in the attach command above, overhead bytes considered.
  131. #
  132. tcp mss 216
  133. #
  134. #-------------------------------------------------
  135. #
  136. # The Window parameter establishes the maximum number of bytes 
  137. # that may be outstanding before your system expects an ack.
  138. # If window is twice as big as mss, for example, there will be two
  139. # active packets on the channel at any given time... large values of
  140. # window provide improved throughput on full-duplex links, but are a
  141. # problem on the air.  Keep  mss <= window <= 2*mss if you're on the air.
  142. #
  143. tcp window 432
  144. #
  145. #------------------------------------------------- 
  146. #
  147. # This entry will open net.log in the \spool directory and will 
  148. # record the server activity of your system.  If you don't want a log,
  149. # comment out this line... if you do, make sure you have a \spool
  150. # directory!
  151. #
  152. log \spool\net.log
  153. #
  154. #-------------------------------------------------
  155. #
  156. # Each of the servers (services you will provide) must be turned 
  157. # on before they will be active. The following entries turn all 
  158. # of them on. To turn any function off use the command 'stop' after
  159. # NET gets fired up, or just comment out the line here.
  160. #
  161. start smtp
  162. start ftp
  163. start echo
  164. start discard
  165. start telnet
  166. smtp trace 9
  167. #
  168. #-------------------------------------------------- 
  169. #
  170. # AX.25 Configuration 
  171. #
  172. # The values in the following entries reflect default values.
  173. # These values come into play when you are operating in the 
  174. # AX.25 mode, along with your ax25 mycall entry above. 
  175. #                                                                    
  176. # If you want to operate as a digipeater (for those poor souls
  177. # not operating TCP/IP!), change 'off' to 'on'.
  178. #
  179. ax25 digipeat on
  180. #
  181. #---------------------------------------------------
  182. #
  183. # Maxframe sets the max number of frames allowed to remain 
  184. # unacknowledged. Cannot be greater than 7.  1 is a good number!
  185. #
  186. ax25 maxframe 1
  187. #
  188. #---------------------------------------------------
  189. #
  190. # Paclen limits the size of I=fields. 
  191. #
  192. ax25 paclen 256
  193. #
  194. #---------------------------------------------------
  195. #
  196. # Retry limits the number of unsuccessful retransmissions.
  197. #
  198. ax25 retry 20
  199. #
  200. #---------------------------------------------------
  201. #
  202. # ax25 window sets the number of bytes that can be pending on an 
  203. # AX.25 receive queue.
  204. #
  205. ax25 window 2048
  206. #
  207. #---------------------------------------------------
  208. # THE END
  209.